
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* ======== WEEKLY MESSAGE POCKET ======== */

.weekly-pocket {
    padding: 70px 20px;
    background: #ffffff;
    text-align: center;
}

.weekly-container {
    max-width: 900px;
    margin: auto;
}

.weekly-pocket h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: #222;
}

.weekly-desc {
    color: #555;
    font-size: 16px;
    margin-bottom: 35px;
}

.weekly-card {
    background: #fafafa;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: .3s ease;
}

.weekly-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.weekly-card video {
    width: 100%;
    border-radius: 12px;
}

.weekly-card h3 {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.weekly-info {
    margin-top: 8px;
    font-size: 15px;
    color: #666;
}

/* Responsive */
@media (max-width: 600px) {
    .weekly-pocket h2 {
        font-size: 28px;
    }
    .weekly-card h3 {
        font-size: 19px;
    }
}


/* ======== SERMON ARCHIVES SECTION ======== */

.archives {
    padding: 60px 20px;
    background: #f6f6f6;
}

.archive-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.archives h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
}

.archive-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.archive-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.archive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.archive-item video {
    width: 100%;
    border-radius: 10px;
    outline: none;
}

.archive-item h4 {
    margin-top: 12px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .archives h2 {
        font-size: 26px;
    }
    .archive-description {
        font-size: 14px;
    }
}




.hero {
    background-image: url(''); 
    background-size: cover;
    background-position: center;
    color: #000;
    text-align: center;
    padding: 80px 20px;
}

.hero h1, h2, h3, p {
    font-size: 50px;
    margin-bottom: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hero p {
    font-size: 20px;
}


.live-stream {
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff;
}

.live-stream h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.stream-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.stream-player iframe {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.stream-description {
    font-size: 18px;
    margin-top: 20px;
    color: #666;
}


.past-services {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.past-services h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.video-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.video-item {
    width: 100%;
    max-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.video-item p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}


footer {
    background-color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}


@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .stream-player iframe {
        height: 400px;
    }

    .video-gallery {
        flex-direction: column;
        align-items: center;
    }

    .video-item {
        max-width: 100%;
        margin-bottom: 20px;
    }
}




.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}


h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}


.services-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}


.services-table th, .services-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.services-table th {
    background-color: #4CAF50;
    color: white;
}


.services-table tr:nth-child(even) {
    background-color: #f2f2f2;
}


.service-day {
    font-weight: bold;
}





.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}


h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}


p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}


.churches-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}


.church-location {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.church-location h3 {
    color: #4CAF50;
    font-size: 1.4rem;
    margin-bottom: 10px;
}


.church-location p {
    color: #666;
    font-size: 1rem;
}
